home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / main.h < prev    next >
C/C++ Source or Header  |  1996-02-16  |  3KB  |  89 lines

  1. /* Copyright (C) 1992, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* main.h */
  20. /* Backward-compatible interface to gsmain.c */
  21. #include "iminst.h"
  22.  
  23. /*
  24.  * This file adds to imain.h some backward-compatible procedures and
  25.  * data elements that assume there is only a single instance of
  26.  * the interpreter.
  27.  */
  28.  
  29. /* ================ Data elements ================ */
  30.  
  31. /* Clients should never access these directly. */
  32.  
  33. #define gs_user_errors (gs_main_instance_default()->user_errors)
  34. #define gs_lib_path (gs_main_instance_default()->lib_path)
  35. /* gs_lib_paths removed in release 3.65 */
  36. /* gs_lib_env_path removed in release 3.65 */
  37.  
  38. /* ================ Exported procedures from gsmain.c ================ */
  39.  
  40. /* ---------------- Initialization ---------------- */
  41.  
  42. #define gs_init0(in, out, err, mlp)\
  43.   gs_main_init0(gs_main_instance_default(), in, out, err, mlp)
  44.  
  45. #define gs_init1()\
  46.   gs_main_init1(gs_main_instance_default())
  47.  
  48. #define gs_init2()\
  49.   gs_main_init2(gs_main_instance_default())
  50.  
  51. #define gs_add_lib_path(path)\
  52.   gs_main_add_lib_path(gs_main_instance_default(), path)
  53.  
  54. #define gs_set_lib_paths()\
  55.   gs_main_set_lib_paths(gs_main_instance_default())
  56.  
  57. #define gs_lib_open(fname, pfile)\
  58.   gs_main_lib_open(gs_main_instance_default(), fname, pfile)
  59.  
  60. /* ---------------- Execution ---------------- */
  61.  
  62. #define gs_run_file(fn, ue, pec, peo)\
  63.   gs_main_run_file(gs_main_instance_default(), fn, ue, pec, peo)
  64.  
  65. #define gs_run_string(str, ue, pec, peo)\
  66.   gs_main_run_string(gs_main_instance_default(), str, ue, pec, peo)
  67.  
  68. #define gs_run_string_with_length(str, len, ue, pec, peo)\
  69.   gs_main_run_string_with_length(gs_main_instance_default(),\
  70.                  str, len, ue, pec, peo)
  71.  
  72. #define gs_run_file_open(fn, pfref)\
  73.   gs_main_run_file_open(gs_main_instance_default(), fn, pfref)
  74.  
  75. #define gs_run_string_begin(ue, pec, peo)\
  76.   gs_main_run_string_begin(gs_main_instance_default(), ue, pec, peo)
  77.  
  78. #define gs_run_string_continue(str, len, ue, pec, peo)\
  79.   gs_main_run_string_continue(gs_main_instance_default(),\
  80.                   str, len, ue, pec, peo)
  81.  
  82. #define gs_run_string_end(ue, pec, peo)\
  83.   gs_main_run_string_end(gs_main_instance_default(), ue, pec, peo)
  84.  
  85. /* ---------------- Termination ---------------- */
  86.  
  87. #define gs_finit(status, code)\
  88.   gs_main_finit(gs_main_instance_default(), status, code)
  89.